Skip to content

Instantly share code, notes, and snippets.

@jcrashkit
Created March 22, 2022 10:13
Show Gist options
  • Save jcrashkit/c10a3d4ead7d6976531c806db35e25c2 to your computer and use it in GitHub Desktop.
Save jcrashkit/c10a3d4ead7d6976531c806db35e25c2 to your computer and use it in GitHub Desktop.
tsss
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