Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
1 contributor

Users who have contributed to this file

30 lines (27 sloc) 541 Bytes
version: "3.3"
services:
sentrifugo_server:
build: ./sentrifugo_server/
container_name: sentrifugo_server
networks:
- net
depends_on:
- sentrifugo_data
ports:
- "8080:80"
devices:
- "/dev/tty:/dev/tty"
links:
- "sentrifugo_data:sentrifugo_data"
sentrifugo_data:
build: ./sentrifugo_data/
container_name: sentrifugo_data
networks:
- net
volumes:
- sentrifugo_data:/var/lib/mysql
networks:
net:
driver: bridge
volumes:
sentrifugo_data: