28 lines
649 B
YAML
28 lines
649 B
YAML
services:
|
|
aim-server:
|
|
command:
|
|
- echo "N" | aim init && aim server
|
|
container_name: aim-server
|
|
entrypoint:
|
|
- /bin/sh
|
|
- -c
|
|
image: aimstack/aim:3.16.2
|
|
ports:
|
|
- 53800:53800
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /opt/aim:/opt/aim
|
|
aim-ui:
|
|
command:
|
|
- echo "N" | aim init && aim up --host 0.0.0.0 --workers 2
|
|
container_name: aim-ui
|
|
entrypoint:
|
|
- /bin/sh
|
|
- -c
|
|
image: aimstack/aim:3.16.2
|
|
ports:
|
|
- 43800:43800
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /opt/aim:/opt/aim
|