18 lines
355 B
YAML
18 lines
355 B
YAML
version: '3'
|
|
services:
|
|
hoppscotch:
|
|
container_name: hoppscotch
|
|
restart: unless-stopped
|
|
# ports:
|
|
# - "3000:3000"
|
|
image: hoppscotch/hoppscotch:latest
|
|
networks:
|
|
nginx:
|
|
aliases:
|
|
- hoppscotch
|
|
|
|
networks:
|
|
nginx:
|
|
external: true
|
|
|
|
# docker run --rm --name hoppscotch -p 3000:3000 hoppscotch/hoppscotch:latest |