docker-compose 模板
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.

23 lines
420 B

3 years ago
version: '3'
networks:
vscs:
external: false
services:
vscs:
image: codercom/code-server:latest
container_name: vscs
environment:
- USER_UID=1000
- USER_GID=1000
- PASSWORD=dg170MH361802
restart: always
privileged: true
networks:
- vscs
volumes:
# - ./.config:/home/coder/.config
- ./project:/home/coder/project
ports:
- "9780:8080"