sshmon/docker-compose.yml

23 lines
430 B
YAML
Raw Permalink Normal View History

version: '3'
services:
app:
container_name: sshmon_main
restart: always
2022-09-16 16:57:14 +00:00
image: sshmon:surreal
ports:
- "8080:8080"
networks:
- network
2022-09-16 16:57:14 +00:00
surrealdb:
container_name: sshmon_surrealdb
restart: always
2022-09-16 16:57:14 +00:00
image: surrealdb/surrealdb:latest
command: start --user root --pass root memory
ports:
2022-09-16 16:57:14 +00:00
- "8000:8000"
networks:
- network
volumes:
volume: {}
networks:
network: