Created
March 22, 2022 10:13
-
-
Save jcrashkit/c10a3d4ead7d6976531c806db35e25c2 to your computer and use it in GitHub Desktop.
Revisions
-
jcrashkit created this gist
Mar 22, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ 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: {}