Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eyhn/dev-container
https://github.com/eyhn/dev-container
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/eyhn/dev-container
- Owner: EYHN
- Created: 2021-02-21T17:56:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-02-25T10:48:00.000Z (over 3 years ago)
- Last Synced: 2024-03-04T20:33:52.792Z (9 months ago)
- Language: Dockerfile
- Size: 31.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
demo docker-compose.yml file
``` yaml
version: "3.7"services:
dev:
image: ghcr.io/eyhn/dev-container-ssh-dind:latest
hostname: devcontainer
environment:
- PUBLIC_KEY_FILE=/authorized_keys
volumes:
- ./authorized_keys:/authorized_keys
- ./ssh_host_key:/home/eyhn/.ssh_host_keys
privileged: true
network_mode: bridge
ports:
- 2222:2222
```