Skip to content

Commit

Permalink
some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardocustodio committed Mar 25, 2024
1 parent 2922ad9 commit e7ab479
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,73 @@ services:
- database
- redis

ingest:
image: enjin/platform:latest
build:
context: .
restart: unless-stopped
environment:
CONTAINER_ROLE: ingest
WWWUSER: '${WWWUSER}'
WWWGROUP: '${WWWGROUP}'
volumes:
- '.:/var/www/html'
networks:
- platform
depends_on:
- database
- redis

websocket:
image: enjin/platform:latest
build:
context: .
restart: unless-stopped
environment:
CONTAINER_ROLE: websocket
WWWUSER: '${WWWUSER}'
WWWGROUP: '${WWWGROUP}'
volumes:
- '.:/var/www/html'
networks:
- platform
ports:
- "${SOCKET_EXTERNAL_PORT}:6001"
depends_on:
- database
- redis

beam:
image: enjin/platform:latest
build:
context: .
restart: unless-stopped
environment:
CONTAINER_ROLE: beam
WWWUSER: '${WWWUSER}'
WWWGROUP: '${WWWGROUP}'
volumes:
- '.:/var/www/html'
networks:
- platform
depends_on:
- database
- redis

daemon:
platform: linux/amd64
image: enjin/wallet-daemon:latest
restart: unless-stopped
env_file:
- ./daemon/.env
volumes:
- ./daemon/config.json:/opt/app/config.json
- ./daemon/store:/opt/app/storage
networks:
- platform
depends_on:
- app

networks:
platform:
driver: bridge
Expand Down

0 comments on commit e7ab479

Please sign in to comment.