https://github.com/stnc/my-docker-env
https://github.com/stnc/my-docker-env
docker
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/stnc/my-docker-env
- Owner: stnc
- Created: 2023-06-28T19:40:20.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-28T04:52:32.000Z (10 months ago)
- Last Synced: 2025-09-01T22:42:53.143Z (9 months ago)
- Topics: docker
- Language: Go
- Homepage:
- Size: 4.49 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Download
```
$ git clone https://github.com/docker-wordpress-setup
```
## Navigate to source
```
$ cd docker-wordpress-setup
```
## Down volume data(has any big changes in db setup)
```
$ docker-compose down --volumes
```
## Run with docker-compose
```
$ docker-compose up -d
```
> You’ll now see along with the docker-compose.yml file and in there the default WordPress files.
##### Accessing phpMyAdmin UI : http://localhost:8081
##### Accessing WordPress Setup : http://localhost:8082
other
https://github.com/nezhar/php-docker-ssl
How to install vim/nano in the docker container
https://medium.com/@ozhanli/how-to-install-vim-nano-in-docker-container-4343e0ac0652
## Identify the Linux Distribution
cat /etc/os-release
## docker change file
https://stackoverflow.com/questions/32750748/how-to-edit-files-in-stopped-not-starting-docker-container
## docker show ip adress
https://stackoverflow.com/questions/17157721/how-to-get-a-docker-containers-ip-address-from-the-host
docker inspect -f '{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps -aq)