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.

Revisions

  1. jcrashkit created this gist Mar 22, 2022.
    30 changes: 30 additions & 0 deletions docker-compose.extended.yml
    Original 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: {}