You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
453 B
22 lines
453 B
version: '2'
|
|
|
|
networks:
|
|
whatsapp:
|
|
driver: bridge
|
|
|
|
services:
|
|
go-whatsapp-multidevice-rest:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
image: 'dimaskiddo/go-whatsapp-multidevice-rest:latest'
|
|
container_name: 'go-whatsapp-multidevice-rest'
|
|
networks:
|
|
- whatsapp
|
|
ports:
|
|
- 3000:3000
|
|
env_file:
|
|
- ./.env
|
|
volumes:
|
|
- ./dbs:/usr/app/go-whatsapp-multidevice-rest/dbs
|
|
restart: unless-stopped
|