Created
March 22, 2022 10:13
-
-
Save jcrashkit/c10a3d4ead7d6976531c806db35e25c2 to your computer and use it in GitHub Desktop.
tsss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - database:/var/lib/mysql | |
| - ./config/start.sql:/docker-entrypoint-initdb.d/start.sql | |
| - ./config/eve_universe.sql:/docker-entrypoint-initdb.d/eve_universe.sql | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: ${MYSQL_PASSWORD} | |
| pathfinder: | |
| # build: | |
| # context: . | |
| # dockerfile: Dockerfile | |
| restart: always | |
| image: kryptedgaming/pathfinder:latest | |
| env_file: .env | |
| labels: | |
| - traefik.enable=true | |
| - traefik.http.routers.apache.rule=Host(`apache.docker`) | |
| - traefik.http.routers.apache.entrypoints=web | |
| - traefik.port=80 | |
| networks: | |
| - seat-network | |
| volumes: | |
| database: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment