https://github.com/cslant/dev-docker-images
Set up the CSlant DEV Images with Docker. 🐳
https://github.com/cslant/dev-docker-images
cslant cslant-docker docker docker-dev docker-development docker-images dockerhub dockerhub-image
Last synced: about 2 months ago
JSON representation
Set up the CSlant DEV Images with Docker. 🐳
- Host: GitHub
- URL: https://github.com/cslant/dev-docker-images
- Owner: cslant
- Created: 2024-11-12T16:16:26.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-04-07T03:54:41.000Z (about 2 months ago)
- Last Synced: 2025-04-12T06:58:36.531Z (about 2 months ago)
- Topics: cslant, cslant-docker, docker, docker-dev, docker-development, docker-images, dockerhub, dockerhub-image
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/cslant
- Size: 35.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dev-docker-images
This repo is to set up the CSlant DEV Images with Docker.
We can use this runner to update all sources for development.
## Docker Hub
[CSlant Docker Hub](https://hub.docker.com/r/cslant)
In this docker repository, we have built the following images:
- [cslant/dev-php56](https://hub.docker.com/r/cslant/dev-php56)
- [cslant/dev-php74](https://hub.docker.com/r/cslant/dev-php74)
- [cslant/dev-php83](https://hub.docker.com/r/cslant/dev-php83)
- [cslant/dev-worker83](https://hub.docker.com/r/cslant/dev-worker83)
- [cslant/dev-php84](https://hub.docker.com/r/cslant/dev-php84)
- [cslant/dev-worker84](https://hub.docker.com/r/cslant/dev-worker84)
- [cslant/dev-mysql](https://hub.docker.com/r/cslant/dev-mysql)
- [cslant/dev-node22](https://hub.docker.com/r/cslant/dev-node22)
- [cslant/dev-nginx](https://hub.docker.com/r/cslant/dev-nginx)
- [cslant/dev-postgres](https://hub.docker.com/r/cslant/dev-postgres)
- [cslant/dev-mailhog](https://hub.docker.com/r/cslant/dev-mailhog)## Prerequisites
First, copy the `.env.example` file to `.env` and update the values.
```bash
envsubst < .env.example > .env
```If you don't have `envsubst` command, you can use the following command:
```bash
cp .env.example .env
```### 💻 Start in Mac with arm64
To run as amd64. You need to set the default platform to `linux/amd64`:
```shell
export DOCKER_DEFAULT_PLATFORM=linux/amd64
```